- 首页列表显示全部问答:
- 将数据库查询结果传递到前端页面 Question.query.all()
- 前端页面循环显示整个列表。
- 问答排序
@app.route('/')def base(): context = { 'questions': Question.query.all() } return render_template('base.html',**context)
2.完成问答详情页布局:
- 包含问答的全部信息
- 评论区
- 以往评论列表显示区。
{% extends'base.html' %}{% block title %}问答详情{% endblock %}{% block head %}{% endblock %}{% block main %}题目:{ { questions.title }}作者:{ { questions.author }} 发布时间:{ { questions.create_time }}
详情:{
{ questions.detail }}
3.在首页点击问答标题,链接到相应详情页。
{% block main %}{
{ username }} contextx
- {% for foo in questions %}
- { { foo.author.username }} { { foo.title }}{#链接到相关详情页#} { { foo.create_time }}
{
{ foo.detail }} {% endfor %}